home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 2: Applications
/
Linux Cubed Series 2 - Applications.iso
/
tex
/
xtexcad-.000
/
xtexcad-
/
orig_src
/
extdef.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-03-04
|
476b
|
25 lines
/* xtexcad V1.2 - graphic editor for LaTeX */
/* 1991 by K.Zitzmann */
/* header-file extdef.h */
#ifndef EXTERNALH
#define EXTERNALH
#ifndef DGUX
extern double atof(char *txt);
#endif
extern double sqrt(double x);
extern int abs(int x);
extern double fabs(double x);
extern double acos(double x);
extern double sin(double x);
extern char *malloc(int l);
extern char *getenv(char *s);
extern int chdir();
/* to be continued... */
#endif